diff --git a/GuessNN-webapp/src/App.vue b/GuessNN-webapp/src/App.vue index 170ad84..8c5e956 100644 --- a/GuessNN-webapp/src/App.vue +++ b/GuessNN-webapp/src/App.vue @@ -1,6 +1,13 @@ - + + + diff --git a/GuessNN-webapp/src/assets/test.json b/GuessNN-webapp/src/assets/test.json new file mode 100644 index 0000000..a3b8172 --- /dev/null +++ b/GuessNN-webapp/src/assets/test.json @@ -0,0 +1,3 @@ +{ + "test": "hello" +} diff --git a/GuessNN-webapp/src/components/MainComponent.vue b/GuessNN-webapp/src/components/MainComponent.vue new file mode 100644 index 0000000..dd576a3 --- /dev/null +++ b/GuessNN-webapp/src/components/MainComponent.vue @@ -0,0 +1,28 @@ + + + + + diff --git a/GuessNN-webapp/vite.config.ts b/GuessNN-webapp/vite.config.ts index 5d02fc2..e8f471d 100644 --- a/GuessNN-webapp/vite.config.ts +++ b/GuessNN-webapp/vite.config.ts @@ -5,10 +5,10 @@ import vue from "@vitejs/plugin-vue"; // https://vitejs.dev/config/ export default defineConfig({ - plugins: [vue()], - resolve: { - alias: { - "@": fileURLToPath(new URL("./src", import.meta.url)), - }, - }, + plugins: [vue()], + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + }, });