Skip to content

Commit bbdade3

Browse files
committed
Name files correctly
1 parent 8673a06 commit bbdade3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

resources/themes/pterodactyl/templates/wrapper.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@show
1111

1212
@section('assets')
13-
{!! $asset->css('assets/css/bundle.css') !!}
13+
{!! $asset->css('assets/bundle.css') !!}
1414
@show
1515

1616
@include('layouts.scripts')
@@ -24,7 +24,7 @@
2424
@yield('below-container')
2525
@show
2626
@section('scripts')
27-
{!! $asset->js('assets/scripts/bundle.js') !!}
27+
{!! $asset->js('assets/bundle.js') !!}
2828
@show
2929
</body>
3030
</html>

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = {
1515
entry: ['./resources/assets/styles/main.css', './resources/assets/scripts/app.js'],
1616
output: {
1717
path: path.resolve(__dirname, 'public/assets'),
18-
filename: 'bundle-[chunkhash].min.js',
18+
filename: 'bundle-[chunkhash].js',
1919
publicPath: '/assets/',
2020
crossOriginLoading: 'anonymous',
2121
},
@@ -77,7 +77,7 @@ module.exports = {
7777
'php artisan ziggy:generate resources/assets/scripts/helpers/ziggy.js',
7878
],
7979
}),
80-
new ExtractTextPlugin('bundle-[chunkhash].min.css', {
80+
new ExtractTextPlugin('bundle-[chunkhash].css', {
8181
allChunks: true,
8282
}),
8383
new UglifyJsPLugin({

0 commit comments

Comments
 (0)