
Security News
Feross on Risky Business Weekly Podcast: npm’s Ongoing Supply Chain Attacks
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
nuxt-typo3-theme
Advanced tools
Customizable UI theme for [nuxt-typo3](https://github.com/TYPO3-Initiatives/nuxt-typo3).
Customizable UI theme for nuxt-typo3.
✅ Mobile First
✅ UI for all content elements
✅ Storybook documentation
✅ TypeScript
✅ Unit test for content elements
This module use Nuxt+TypeScript - please setup it before: https://typescript.nuxtjs.org/guide/setup
yarn add --dev @nuxt/typescript-build @nuxt/types
edit nuxt.config.js
export default {
buildModules: ['@nuxt/typescript-build']
}
Please remember to setup tsconfig.json. More info here
yarn add nuxt-typo3-theme
edit nuxt.config.js:
buildModules: [
'@nuxt/typescript-build',
'nuxt-typo3-theme',
'nuxt-typo3'
],
This module install default layouts for you, so you can see warning in the console:
WARN Duplicate layout registration, "default" has been registered as "./layouts.default.bc51ceba.vue"
You can delete your layouts/default.vue file or disable layouts provided by theme:
typo3theme: {
layouts: false
}
You can override css by SCSS or CSS variables:
layouts/default.vue:
<style>
:root {
--color-primary: red;
--color-bg-secondary: blue;
--color-bg-primary: var(--color-primary);
--font-family-primary: Helvetica;
}
</style>
If you need to override SCSS variables, please use https://www.npmjs.com/package/@nuxtjs/style-resources to import them as a global.
Some components are registered as a local components, for instance UiLogo in CwHeader.
You can replace UiLogo by register own component as a global.
components/UiLogo.vue
<template>
<div>My logo</div>
</template>
<script>
export default {
name: 'UiLogo'
}
</script>
plugins/components.js:
import Vue from 'vue'
import UiLogo from '../components/Logo.vue'
Vue.component('UiLogo', UiLogo)
Use components file as plugin in nuxt.config.js
nuxt.config.js:
plugins: [
'~plugins/components'
],
FAQs
Customizable UI theme for [nuxt-typo3](https://github.com/TYPO3-Initiatives/nuxt-typo3).
We found that nuxt-typo3-theme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.

Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.

Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.