File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ class PuterHomepageService extends BaseService {
257
257
}
258
258
259
259
<!-- Load the GUI script -->
260
- <script src="/dist/gui. bundle.js"></script>
260
+ <script src="/dist/bundle.min .js"></script>
261
261
<!-- Initialize GUI when document is loaded -->
262
262
<script type="module">
263
263
window.addEventListener('load', function() {
Original file line number Diff line number Diff line change 1
1
const path = require ( 'path' ) ;
2
2
const EmitPlugin = require ( './EmitPlugin.cjs' ) ;
3
- module . exports = ( options ) => {
3
+ module . exports = ( options = { } ) => {
4
4
const config = { } ;
5
5
config . entry = [
6
6
'./src/init_sync.js' ,
@@ -15,7 +15,7 @@ module.exports = (options) => {
15
15
] ;
16
16
config . output = {
17
17
path : path . resolve ( __dirname , '../dist' ) ,
18
- filename : 'gui. bundle.js' ,
18
+ filename : 'bundle.min .js' ,
19
19
} ;
20
20
config . plugins = [
21
21
EmitPlugin ( {
You can’t perform that action at this time.
0 commit comments