Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
marco76tv committed Dec 27, 2024
1 parent 8d7e74c commit feeac59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export default defineConfig(
publicDirectory: '../../public',
buildDirectory: 'build-setting',
input: [
__dirname + '/Resources/assets/sass/app.scss',
__dirname + '/Resources/assets/js/app.js'
__dirname + '/resources/assets/sass/app.scss',
__dirname + '/resources/assets/js/app.js'
],
refresh: true,
}
Expand Down
6 changes: 3 additions & 3 deletions webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ require('laravel-mix-merge-manifest');

mix.setPublicPath('../../public').mergeManifest();

mix.js(__dirname + '/Resources/assets/js/app.js', 'js/blog.js')
.sass(__dirname + '/Resources/assets/sass/app.scss', 'css/blog.css');
mix.js(__dirname + '/resources/assets/js/app.js', 'js/blog.js')
.sass(__dirname + '/resources/assets/sass/app.scss', 'css/blog.css');

if (mix.inProduction()) {
mix.version();
}
}

0 comments on commit feeac59

Please sign in to comment.