Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (woonuxt-settings) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
WooNuxt Settings Module
This nuxt module simplt connects to the WooNuxt Settings WordPress plugin and injest them into Nuxt as ENV variables or the publicRuntimeConfig.
Quick Setup
- Add
woonuxt-settings
dependency to your project
# Using pnpm
pnpm add -D woonuxt-settings
# Using yarn
yarn add --dev woonuxt-settings
# Using npm
npm install --save-dev woonuxt-settings
- Add
woonuxt-settings
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: ["woonuxt-settings"],
});