Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jsartisan/23af10e7c33efc4ab6cd1292e8ad5e99 to your computer and use it in GitHub Desktop.
Save jsartisan/23af10e7c33efc4ab6cd1292e8ad5e99 to your computer and use it in GitHub Desktop.
Copying Static Assets
// ...
const CopyWebpackPlugin = require('copy-webpack-plugin');
// ...
const config = {
// ...
plugins: [
// ...
new CopyWebpackPlugin([
{ from: './src/manifest.json', to: './manifest.json' },
{ from: './src/icon16.png', to: './icon16.png' },
{ from: './src/icon48.png', to: './icon48.png' },
{ from: './src/icon128.png', to: './icon128.png' },
]),
// ...
],
};
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment