webext-webpack-plugin
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

web-ext plugin for Webpack 5

NPM Version Build Status Dependencies Test Coverage

Install

yarn add -D webext-webpack-plugin
npm add --save-dev webext-webpack-plugin

Usage

Javascript

const WebExtWebpackPlugin = require('webext-webpack-plugin');
const path = require('path');

const baseDir = path.resolve(__dirname);

const config = {
  plugins: [
    new WebExtWebpackPlugin({
      run: {
        firefox: 'C:\\Program Files\\Firefox Developer Edition\\firefox.exe',
        startUrl: ['https://google.com/'],
      },
    }),
  ]
};

TypeScript

import * as path from 'path';
import * as webpack from 'webpack';
import WebExtWebpackPlugin from 'webext-webpack-plugin';

const baseDir = path.resolve(__dirname);

const config: webpack.Configuration  = {
  plugins: [
    new WebExtWebpackPlugin({
      run: {
        firefox: 'C:\\Program Files\\Firefox Developer Edition\\firefox.exe',
        startUrl: ['https://google.com/'],
      },
    }),
  ]
};

export default config;

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i webext-webpack-plugin

Weekly Downloads

0

Version

0.0.11

License

MIT

Unpacked Size

17.6 kB

Total Files

12

Last publish

Collaborators

  • theaifam5