Skip to content

Commit

Permalink
change name and config
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Feb 2, 2024
1 parent 04d9cb6 commit 17f9cf8
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "compas2.dev",
"name": "compas.dev",
"version": "0.0.0",
"private": true,
"scripts": {
Expand Down Expand Up @@ -40,4 +40,4 @@
"vite": "^4.2.0",
"vite-plugin-vuetify": "^1.0.0"
}
}
}
64 changes: 32 additions & 32 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,37 @@ import { fileURLToPath, URL } from "node:url";

// https://vitejs.dev/config/
export default defineConfig({
base: "/compas2.dev/",
plugins: [
vue({
template: { transformAssetUrls },
}),
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin
vuetify({
autoImport: true,
styles: {
configFile: "src/styles/settings.scss",
},
}),
ViteFonts({
google: {
families: [
{
name: "Roboto",
styles: "wght@100;300;400;500;700;900",
},
],
},
}),
],
define: { "process.env": {} },
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"],
},
server: {
port: 3000,
base: "/",
plugins: [
vue({
template: { transformAssetUrls },
}),
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin
vuetify({
autoImport: true,
styles: {
configFile: "src/styles/settings.scss",
},
}),
ViteFonts({
google: {
families: [
{
name: "Roboto",
styles: "wght@100;300;400;500;700;900",
},
],
},
}),
],
define: { "process.env": {} },
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"],
},
server: {
port: 3000,
},
});

0 comments on commit 17f9cf8

Please sign in to comment.