Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate from vue cli to vite #176

Merged
merged 11 commits into from
Mar 9, 2023
1 change: 1 addition & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"notyf": "^3.10.0",
"obs-websocket-js": "^5.0.2",
"opus-decoder": "^0.5.3",
"rollup-plugin-node-builtins": "^2.1.2",
zusorio marked this conversation as resolved.
Show resolved Hide resolved
"socket.io-client": "^4.0.1",
"spacetime": "^6.16.0",
"spacetime-informal": "^0.6.1",
Expand Down
3 changes: 2 additions & 1 deletion website/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url))
"@": fileURLToPath(new URL("./src", import.meta.url)),
fs: require.resolve("rollup-plugin-node-builtins")
},
extensions: [".mjs", ".js", ".ts", ".jsx", ".tsx", ".json", ".vue"]
}
Expand Down