diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-06-04 22:40:48 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-07-02 21:16:41 +0200 |
commit | cbbed6346a437e6b9f05f646f1df0c77d2fb36eb (patch) | |
tree | 50d887f10739036a374065ebea047f891ad223a7 /vite.config.js | |
parent | 95c589ba71d80ed0073158bbb6f81ec449b058d6 (diff) | |
download | homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.tar.gz homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.tar.zst homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.zip |
Migrate to VueJS 3
Diffstat (limited to 'vite.config.js')
-rw-r--r-- | vite.config.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..87f098b --- /dev/null +++ b/vite.config.js | |||
@@ -0,0 +1,15 @@ | |||
1 | import { fileURLToPath, URL } from "url"; | ||
2 | |||
3 | import { defineConfig } from "vite"; | ||
4 | import vue from "@vitejs/plugin-vue"; | ||
5 | |||
6 | // https://vitejs.dev/config/ | ||
7 | export default defineConfig({ | ||
8 | plugins: [vue()], | ||
9 | resolve: { | ||
10 | alias: { | ||
11 | "@": fileURLToPath(new URL("./src", import.meta.url)), | ||
12 | }, | ||
13 | }, | ||
14 | }); | ||
15 | |||