Skip to content

Commit

Permalink
fix: increase max asset size (#1682)
Browse files Browse the repository at this point in the history
* fix: increase max asset size

* chore: copywrite header
  • Loading branch information
danielbankhead committed Oct 24, 2023
1 parent 6c0a6bd commit edb9401
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions system-test/fixtures/kitchen/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Use `npm run webpack` to produce Webpack bundle for this library.

const path = require('path');

module.exports = {
performance: {
hints: false,
maxEntrypointSize: 524288,
maxAssetSize: 524288,
},
entry: './src/index.ts',
resolve: {
extensions: ['.ts', '.js', '.json'],
Expand Down

0 comments on commit edb9401

Please sign in to comment.