Back to Wepy

wepy define plugin

packages/plugin-define/README_EN.md

2.1.0551 B
Original Source

English | 简体中文

wepy define plugin

Install

bash
npm install @wepy/plugin-define --save-dev

Configration

wepy.config.js

javascript
const DefinePlugin = require('@wepy/plugin-define');

module.exports = {
  plugins: [
    DefinePlugin({
      BASE_URL: JSON.stringify('http://foobar.com'),
      'process.env.NODE_ENV': 'development',
      'typeof window': JSON.stringify('undefined'),
      DEV: true
    })
  ]
};

Reference

webpack.DefinePlugin