mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-25 09:45:14 -06:00
25ba04c980
These changes contain a redesign of the OPA website. The main changes are (1) new frontpage w/ refreshed messaging and assets and (2) docs ported to gitbook.
36 lines
1012 B
JavaScript
Executable File
36 lines
1012 B
JavaScript
Executable File
/**
|
|
* Copyright 2015 IBM Corp. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var src = './src';
|
|
var dest = './';
|
|
|
|
module.exports = {
|
|
paths: {
|
|
src: src,
|
|
src_styles: src + '/scss',
|
|
src_icons: src + '/icons',
|
|
src_scripts: src + '/js',
|
|
dest: dest,
|
|
dest_styles: dest + '/css',
|
|
dest_fonts: dest + '/fonts',
|
|
dest_iconFonts: dest + '/fonts/icon-fonts',
|
|
dest_icons: dest + '/images/icons',
|
|
dest_scripts: dest + '/js'
|
|
}
|
|
};
|