Skip to content

Commit

Permalink
Move the GUI source into frontend directory
Browse files Browse the repository at this point in the history
  • Loading branch information
m4heshd committed Apr 18, 2024
1 parent 73a2075 commit 8ddaeea
Show file tree
Hide file tree
Showing 33 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion .env

This file was deleted.

1 change: 1 addition & 0 deletions frontend/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_WS_URI=http://localhost:8383/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 6 additions & 1 deletion vite.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ import vue from '@vitejs/plugin-vue';

// https://vitejs.dev/config/
export default defineConfig(async ({command}) => ({
root: path.resolve(__dirname, 'frontend'),
build: {
outDir: path.resolve(__dirname, 'dist'),
emptyOutDir: true
},
plugins: [
vue(),
{
Expand All @@ -23,7 +28,7 @@ export default defineConfig(async ({command}) => ({
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
'@': path.resolve(__dirname, 'frontend', 'src')
}
},
server: {
Expand Down

0 comments on commit 8ddaeea

Please sign in to comment.