Skip to content

Commit 8790a0e

Browse files
committed
fixed workflow
1 parent 539624a commit 8790a0e

1 file changed

Lines changed: 11 additions & 18 deletions

File tree

vite.config.js

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,31 @@
11
// Plugins
2-
import vue from '@vitejs/plugin-vue'
3-
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
2+
import vue from "@vitejs/plugin-vue";
3+
import vuetify, { transformAssetUrls } from "vite-plugin-vuetify";
44

55
// Utilities
6-
import { defineConfig } from 'vite'
7-
import { fileURLToPath, URL } from 'node:url'
6+
import { defineConfig } from "vite";
7+
import { fileURLToPath, URL } from "node:url";
88

99
// https://vitejs.dev/config/
1010
export default defineConfig({
1111
plugins: [
12-
vue({
13-
template: { transformAssetUrls }
12+
vue({
13+
template: { transformAssetUrls },
1414
}),
1515
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin
1616
vuetify({
1717
autoImport: true,
1818
}),
1919
],
20-
define: { 'process.env': {} },
20+
define: { "process.env": {} },
2121
resolve: {
2222
alias: {
23-
'@': fileURLToPath(new URL('./src', import.meta.url))
23+
"@": fileURLToPath(new URL("./src", import.meta.url)),
2424
},
25-
extensions: [
26-
'.js',
27-
'.json',
28-
'.jsx',
29-
'.mjs',
30-
'.ts',
31-
'.tsx',
32-
'.vue',
33-
],
25+
extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"],
3426
},
3527
server: {
3628
port: 3000,
3729
},
38-
})
30+
base: "/website/",
31+
});

0 commit comments

Comments
 (0)