poi-plugin-resolve-alias

Use your custom resolve alias in Poi.

Usage no npm install needed!

<script type="module">
  import poiPluginResolveAlias from 'https://cdn.skypack.dev/poi-plugin-resolve-alias';
</script>

README

poi-plugin-resolve-alias

license npm npm Travis

Use your custom resolve alias in Poi.

Why?

Poi provides @ as alias to the path to src folder.

But if you want the alias to the folder outside src folder, use this.

Installation

Requirement: You need to install Poi first.

Via NPM:

npm install --save-dev poi-plugin-resolve-alias

Via Yarn:

yarn add --dev poi-plugin-resolve-alias

Usage

Add this preset into your poi.config.js config file.

const aliases = {
    '<my first alias>': '<my first resolve path>',
    '<my other alias>': '<my other resolve path>'
};

module.exports = {
    plugins: [
        {
            resolve: 'poi-plugin-resolve-alias',
            options: aliases
        }
    ]
};