Chen Asraf 5e90e3cc94 fix build
2022-03-07 02:09:31 +02:00
2022-03-07 02:09:31 +02:00
2022-03-07 01:59:39 +02:00
2022-03-07 01:59:39 +02:00
2022-03-07 02:09:31 +02:00
2022-03-07 01:59:39 +02:00
2022-03-07 01:59:39 +02:00
2018-03-15 16:55:33 +02:00
2022-03-07 02:05:54 +02:00
2018-03-15 18:44:25 +02:00
2022-03-07 01:59:39 +02:00

chrome-url-loader

Chrome Extension URL loader for webpack.

This loader links to the file appropriately, using chrome.extension.getURL and also creates the file for you in the specified output dir.

Usage

Use the loader as you would any other one, specify the test files and options:

{
  loader: require.resolve('chrome-url-loader'),
  test: /\.(png|svg|jpe?g|bmp|gif)/i,
  options: {
    publicDir: 'build/static/images',
    baseDir: paths.appSrc
  }
}

Options

  • baseDir (optional) - Your absolute source root directory (e.g. /path/to/src). Defaults to current working directory.
  • publicDir - The output dir to save the file to (e.g. build/static/media)
Description
Chrome Extension URL loader for webpack - import your files normally and they will be bundled for Chrome extension releases
Readme Apache-2.0 342 KiB
Languages
JavaScript 100%