Skip to content

Instantly share code, notes, and snippets.

@sebiweise
Created April 22, 2022 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebiweise/81fac68c851de1992460d3f995c9804a to your computer and use it in GitHub Desktop.
Save sebiweise/81fac68c851de1992460d3f995c9804a to your computer and use it in GitHub Desktop.
Next.js & Nextra static export example + Azure Pipelines YML
stages:
- stage: Build
pool:
vmImage: ubuntu-latest
demands:
- npm
jobs:
- job: BuildProject
displayName: Build Project
variables:
npm_config_cache: $(Pipeline.Workspace)/.npm
basePath: '/'
steps:
- task: Cache@2
inputs:
key: 'npm | "$(Agent.OS)" | package-lock.json'
restoreKeys: |
npm | "$(Agent.OS)"
path: $(npm_config_cache)
displayName: Cache npm
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- task: Npm@1
displayName: 'npm install'
inputs:
command: 'ci'
- task: Npm@1
displayName: 'npm build'
env:
NEXT_PUBLIC_BASE_PATH: $(basePath)
inputs:
command: 'custom'
customCommand: 'run build'
- task: Npm@1
inputs:
command: 'custom'
customCommand: 'run export'
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: 'out'
interface ImageProps {
alt?: string
src: string
}
const Image: React.FC<ImageProps> = ({
children,
alt = 'Image Alt',
src
}) => {
return (
<img alt={alt} src={(process.env.NEXT_PUBLIC_BASE_PATH || '') + src} />
)
}
export default Image
const withNextra = require('nextra')({
//Nextra
theme: 'nextra-theme-docs',
themeConfig: './theme.config.js',
unstable_staticImage: false
});
const path = require('path');
module.exports = withNextra({
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
trailingSlash: true,
basePath: process.env.NEXT_PUBLIC_BASE_PATH || ''
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment