summaryrefslogtreecommitdiff
path: root/vite.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'vite.config.js')
-rwxr-xr-xvite.config.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/vite.config.js b/vite.config.js
index 9f67760..35a4549 100755
--- a/vite.config.js
+++ b/vite.config.js
@@ -6,13 +6,24 @@ export default defineConfig({
laravel({
input: [
'resources/js/app.js',
+ 'resources/js/main.js',
+ 'resources/js/hn.js',
'resources/js/writing_create.js',
+ 'resources/css/writings.css',
+ 'resources/css/app.css',
+ 'resources/css/home.css',
+ 'resources/css/presence.css',
],
refresh: true,
}),
],
server: {
- host: '192.168.1.171',
+ host: '127.0.0.1',
cors: true,
+ },
+ resolve: {
+ alias: {
+ '@': 'resources'
+ }
}
});