Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['12', '14', '16']
node-version: ['16']
name: '[v${{ matrix.node-version }}] prepare'

steps:
Expand All @@ -37,7 +37,7 @@ jobs:
needs: prepare
strategy:
matrix:
node-version: ['12', '14', '16']
node-version: ['16']
name: '[v${{ matrix.node-version }}] check'

steps:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
needs: prepare
strategy:
matrix:
node-version: ['12', '14', '16']
node-version: ['16']
name: '[v${{ matrix.node-version }}] build'

steps:
Expand Down
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const { withRasterImages, withPlayback, withSVG, withFonts, with3D, withJSON5 } = require('@moxy/next-common-files');
const withOneOf = require('@moxy/next-webpack-oneof');
const withCompileNodeModules = require('@moxy/next-compile-node-modules');
// const withCompileNodeModules = require('@moxy/next-compile-node-modules');
const withPlugins = require('next-compose-plugins');
const withSitemap = require('@moxy/next-sitemaps/plugin');
const envVar = require('env-var');
Expand Down Expand Up @@ -72,7 +72,7 @@ module.exports = (phase, params) => {
inline: true,
}),
withJSON5(),
withCompileNodeModules(),
// withCompileNodeModules(),
withSitemap(phase, SITE_URL),

// Base config here.
Expand Down
Loading